home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / Software / Vyzkuste / xsetup / _SETUP.2 / Group3 / XQ Windows Version.xpl < prev    next >
Text File  |  1999-09-08  |  874b  |  35 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="4"
  4. "UIPATH"="System\Information"
  5. "NAME"="Windows Version"
  6. "VERSION"="0.001"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Windows 95"
  9. "TEXT 2"="Windows NT"
  10. "TEXT 3"="Windows 98"
  11. "TEXT 4"="Windows 2000"
  12. "DESCRIPTION 1"="This plug-in shows which OS you are running (very useful, isn't it?)"
  13. "AUTHOR"="Xteq Systems"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15.  
  16.  
  17. 'Called when the Plugin is started
  18. Sub Plugin_Initialize
  19.  i=GetWinVer
  20.  SetUIElement i,True
  21.  Disable 
  22. End Sub
  23.  
  24. 'Called when the Plugin should validate the Data the user has entered
  25. Sub Plugin_CheckData(ElementIndex)
  26. End Sub
  27.  
  28. 'Called when the Plugin should apply the changes
  29. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  30. End Sub
  31.  
  32. 'Called when the Plugin is about to be removed from memory
  33. Sub Plugin_Terminate
  34. End Sub
  35.